home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-11-11 | 463 b | 23 lines |
- #!smake
-
- include $(ROOT)/usr/include/make/commondefs
-
- # debugging option
- LCOPTS = -g
- #OPTIMIZER= -O2
-
- LLDLIBS = -lGLw -lGL -lGLU -lXm -lXt -lX11 -lPW
- # override the prototypes macro in commondefs: if you want
- # prototyping turned on, comment out the next line.
- PROTOTYPES=
-
- CFILES = init.c grafix.c main.c ui.c draw.c lmwrap.c
- TARGETS = lmOGL
-
- default all: $(TARGETS)
-
- include $(COMMONRULES)
-
- $(TARGETS): $(OBJECTS)
- $(CCF) $(OBJECTS) $(LDFLAGS) -o $(TARGETS)
-